net/http.http2ClientConn.currentRequestCountLocked (method)

6 uses

	net/http (current package)
		h2_bundle.go#L8342: 		maxConcurrentOkay = cc.currentRequestCountLocked() < int(cc.maxConcurrentStreams)
		h2_bundle.go#L8377: 	if cc.currentRequestCountLocked() >= int(cc.maxConcurrentStreams) {
		h2_bundle.go#L8388: func (cc *http2ClientConn) currentRequestCountLocked() int {
		h2_bundle.go#L8402: 	return max(0, int(cc.maxConcurrentStreams)-cc.currentRequestCountLocked())
		h2_bundle.go#L9053: 		if cc.currentRequestCountLocked() < int(cc.maxConcurrentStreams) {
		h2_bundle.go#L10637: 	return cc.cc.currentRequestCountLocked()